// Test local/global variable scope

// define local and global variable
# LOCAL lcli = 10
# gbli = 10

# MSGBOX "Toplevel before FILE command: gbli = " gbli "; lcli = " lcli

// call file that redefines both local/global variables
# FILE "_TestLocalVariables.txt"

// gbli should be affected by FILE call
// lcli should be unaffected by FILE call
# MSGBOX "Toplevel after FILE command: gbli = " gbli "; lcli = " lcli

